home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
Apps
/
AudioApps
/
StartupSound
/
StartupSoundApp.m
< prev
Wrap
Text File
|
1992-12-20
|
521b
|
30 lines
/* Generated by Interface Builder */
#import "StartupSoundApp.h"
#import <appkit/appkit.h>
#import <soundkit/soundkit.h>
#import <stdio.h>
@implementation StartupSoundApp
- appDidInit:sender
{
theSound = [Sound findSoundFor:"Startup"];
if (theSound) {
[theSound setDelegate:self];
[theSound play]; }
else
NXRunAlertPanel("Error", "Could not find anything called Startup.snd, process aborted", "Well, Okay!", NULL, NULL);
return self;
}
- didPlay:sender
{
[self terminate:NULL];
return self;
}
@end